body {
    font-family: sans-serif !important;
}
.scroll-container {
    scroll-snap-type: x mandatory;
    overflow-x: hidden;
    display: flex;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-item {
    min-width: 100%;
    height: 100%;
    scroll-snap-align: center;
}

/* Loader Styles */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.spinner {
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: spin 1s linear infinite;
    border: 4px solid #f7ae18;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border-top-width: 4px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.scroll-container {
    scroll-snap-type: x mandatory;
    overflow-x: hidden;
    display: flex;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-item {
    min-width: 100%;
    height: 100%;
    scroll-snap-align: center;
}

.container {
    width: 80%;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .container {
        max-width: 90%;
    }
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.parallax {
    transform: translateY(var(--scroll));
    transition: transform 0.2s ease-out;
}

.blur-left,
.blur-right,
.blur-up,
.blur-down {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.8s ease-out, filter 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.blur-left {
    transform: translateX(-50px);
}

.blur-right {
    transform: translateX(50px);
}

.blur-up {
    transform: translateY(-50px);
}

.blur-down {
    transform: translateY(50px);
}

@media (max-width: 768px) {
    .blur-left {
        transform: translateX(-10px);
    }

    .blur-right {
        transform: translateX(10px);
    }

    .blur-up {
        transform: translateY(-10px);
    }

    .blur-down {
        transform: translateY(10px);
    }
}

.show {
    opacity: 1 !important;
    filter: blur(0);
    transform: translateX(0) translateY(0);
}

.active-link {
    color: #f7ae18 !important;
    transition: color 0.3s ease-in-out;
}